Spring Boot提供很好的Spring MVC自動配置,我們可以無腦直接拿來用,當然也可以自己加一些想要使用的組件,但也有可能你會想要全部自己來,那麼要怎麼才可以改為全手動配置呢,今日我們來談談
@Configuration
@EnableWebMvc
public class MySpringMvcConfiguration{
//...
}
@ConditionalOnMissingBean({WebMvcConfigurationSupport.class})
@Import({DelegatingWebMvcConfiguration.class})